From: Jerome Jamnicky Date: Mon, 19 Apr 2004 12:38:47 +0000 (+0000) Subject: ... and make it overwrite the old links table by default X-Git-Tag: 1.3.0beta1~383 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=c4bdddbb3db65e856baac41acb43888c8f0d84ee;p=lhc%2Fweb%2Fwiklou.git ... and make it overwrite the old links table by default --- diff --git a/maintenance/convertLinks.php b/maintenance/convertLinks.php index b844da43ed..55eef53f08 100644 --- a/maintenance/convertLinks.php +++ b/maintenance/convertLinks.php @@ -17,7 +17,7 @@ $linksConvInsertInterval = 1000; #number of rows between INSERTs and, optionally $initialRowOffset = 0; $finalRowOffset = 0; # not used yet; highest row number from links table to process $createTemporaryTable = 1; # create a temporary table to hold new links table during conv process -$overwriteLinksTable = 0; # overwrite the old links table with the new one +$overwriteLinksTable = 1; # overwrite the old links table with the new one $res = wfQuery( "SELECT COUNT(*) AS count FROM links", DB_WRITE ); $row = wfFetchObject($res);